projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7d630e
)
Don't require match
author
Dmitry Gutov
<dgutov@yandex.ru>
Wed, 6 May 2015 01:35:46 +0000
(
04:35
+0300)
committer
Dmitry Gutov
<dgutov@yandex.ru>
Wed, 6 May 2015 02:58:23 +0000
(
05:58
+0300)
* lisp/progmodes/xref.el (xref--read-identifier): Don't require
match. That doesn't work for every command, and some identifier
completion tables are bound to be imperfect anyway.
lisp/progmodes/xref.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/xref.el
b/lisp/progmodes/xref.el
index f11dff1d08effdfb80f3fe3d7092a5e2a3e5b331..f6faaf640b2583f848a2180e47130f0f75b67e6b 100644
(file)
--- a/
lisp/progmodes/xref.el
+++ b/
lisp/progmodes/xref.el
@@
-624,7
+624,7
@@
Return an alist of the form ((FILENAME . (XREF ...)) ...)."
(cond ((or current-prefix-arg xref-prompt-for-identifier (not id))
(completing-read prompt
(funcall xref-identifier-completion-table-function)
- nil
t
nil
+ nil
nil
nil
'xref--read-identifier-history id))
(t id))))